home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / libx11 / include / x11 / xaw / mailbox.h < prev    next >
C/C++ Source or Header  |  1999-01-01  |  2KB  |  62 lines

  1. /*
  2.  * $XConsortium: Mailbox.h,v 1.20 91/05/04 18:58:42 rws Exp $
  3.  *
  4.  * Copyright 1988 Massachusetts Institute of Technology
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software and its
  7.  * documentation for any purpose and without fee is hereby granted, provided
  8.  * that the above copyright notice appear in all copies and that both that
  9.  * copyright notice and this permission notice appear in supporting
  10.  * documentation, and that the name of M.I.T. not be used in advertising or
  11.  * publicity pertaining to distribution of the software without specific,
  12.  * written prior permission.  M.I.T. makes no representations about the
  13.  * suitability of this software for any purpose.  It is provided "as is"
  14.  * without express or implied warranty.
  15.  *
  16.  * Author:  Jim Fulton, MIT X Consortium
  17.  */
  18.  
  19. #ifndef _XawMailbox_h
  20. #define _XawMailbox_h
  21.  
  22. /*
  23.  * Mailbox widget; looks a lot like the clock widget, don't it...
  24.  */
  25.  
  26. /* resource names used by mailbox widget that aren't defined in StringDefs.h */
  27.  
  28. #ifndef _XtStringDefs_h_
  29. #define XtNupdate "update"
  30. #endif
  31.  
  32. /* command to exec */
  33. #define XtNcheckCommand "checkCommand"
  34. #define XtNonceOnly "onceOnly"
  35.  
  36. /* Int: volume for bell */
  37. #define XtNvolume "volume"
  38. #define XtNfullPixmap "fullPixmap"
  39. #define XtNfullPixmapMask "fullPixmapMask"
  40. #define XtNemptyPixmap "emptyPixmap"
  41. #define XtNemptyPixmapMask "emptyPixmapMask"
  42. #define XtNflip "flip"
  43. #define XtNshapeWindow "shapeWindow"
  44.  
  45. #define XtCCheckCommand "CheckCommand"
  46. #define XtCVolume "Volume"
  47. #define XtCPixmapMask "PixmapMask"
  48. #define XtCFlip "Flip"
  49. #define XtCShapeWindow "ShapeWindow"
  50.  
  51.  
  52. /* structures */
  53.  
  54. typedef struct _MailboxRec *MailboxWidget;  /* see MailboxP.h */
  55. typedef struct _MailboxClassRec *MailboxWidgetClass;  /* see MailboxP.h */
  56.  
  57.  
  58. extern WidgetClass mailboxWidgetClass;
  59.  
  60. #endif /* _XawMailbox_h */
  61. /* DON'T ADD STUFF AFTER THIS #endif */
  62.